PhpHelper.h
Language: C++
Last Modified: 2022-08-18 12:03:01 AM UTC
File Size: 214 bytes
Last Modified: 2022-08-18 12:03:01 AM UTC
File Size: 214 bytes
http://www.penguinstew.ca/example/CodeFormater/PhpHelper.h
#pragma once
#include <string>
#include <vector>
namespace PhpHelper
{
std::string htmlspecialchars(std::string input);
std::vector<std::string> explode(std::string delimiter, std::string str);
}
1
2
3
4
5
6
7
8
9
10
11
12